home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 60 / IOPROG_60.ISO / soft / c++ / gsl-1.1.1-setup.exe / {app} / src / fft / real.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-02-18  |  916 b   |  41 lines

  1. #include <config.h>
  2. #include <stddef.h>
  3. #include <stdlib.h>
  4. #include <math.h>
  5.  
  6. #include <gsl/gsl_errno.h>
  7. #include <gsl/gsl_complex.h>
  8.  
  9. #include <gsl/gsl_fft_real.h>
  10. #include <gsl/gsl_fft_real_float.h>
  11.  
  12. #define BASE_DOUBLE
  13. #include "templates_on.h"
  14. #include "real_pass.h"
  15. #include "real_init.c"
  16. #include "real_main.c"
  17. #include "real_pass_2.c"
  18. #include "real_pass_3.c"
  19. #include "real_pass_4.c"
  20. #include "real_pass_5.c"
  21. #include "real_pass_n.c"
  22. #include "real_radix2.c"
  23. #include "real_unpack.c"
  24. #include "templates_off.h"
  25. #undef  BASE_DOUBLE
  26.  
  27. #define BASE_FLOAT
  28. #include "templates_on.h"
  29. #include "real_pass.h"
  30. #include "real_init.c"
  31. #include "real_main.c"
  32. #include "real_pass_2.c"
  33. #include "real_pass_3.c"
  34. #include "real_pass_4.c"
  35. #include "real_pass_5.c"
  36. #include "real_pass_n.c"
  37. #include "real_radix2.c"
  38. #include "real_unpack.c"
  39. #include "templates_off.h"
  40. #undef  BASE_FLOAT
  41.